home *** CD-ROM | disk | FTP | other *** search
- /* term.h */
- /* variables necessary for terminal operations. */
-
- #ifndef JOVETERM
-
- extern int LI; /* Number of lines */
- extern int CO; /* Number of columns */
-
- extern int TABS; /* Whether we are in tabs mode */
- extern int UpLen; /* Length of the UP string */
- extern int HomeLen; /* Length of Home string */
- extern int LowerLen; /* Length of lower string */
-
- extern int BG; /* Are we on a bitgraph */
-
- /* extern char PC; */
- extern char *BC; /* Back space */
- extern int ospeed;
- extern int hasIC;
- extern int hasIM;
-
- #endif
-
- #define DELETE 0
- #define INSERTCH 1
- #define CLREOL 2
- #define INSERT 3
-
-
- /* end */